home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / RMDIR.HLP < prev    next >
Text File  |  1985-09-10  |  1KB  |  33 lines

  1. -----------------------  RMDIR - Internal DOS Command  -------------------------
  2.  
  3. RMDIR removes a subdirectory.
  4.  
  5. FORMAT:   RMDIR [d:]path     or     RD [d:]path
  6.  
  7. REMARKS:
  8.  
  9.    d:    - the drive letter.  If omitted, the default drive is assumed.
  10.    path  - the directory to be removed.  The last directory specified is the
  11.            one removed.
  12.  
  13.    The directory must contain no files other than the "." and ".." files
  14.    that DOS placed there when the directory was created.  Thus, you must ERASE
  15.    all files in the subdirectory before executing a RMDIR command.
  16.  
  17.    The root directory and the current directory cannot be removed.
  18.  
  19. EXAMPLES:
  20.  
  21. Remove the DATA subdirectory from the disk in drive B.  DATA is a subdirectory
  22. of the BUDGET directory.  BUDGET is a subdirectory of the root directory.  The
  23. default drive is A:
  24.  
  25.           RMDIR B:\BUDGET\DATA
  26.  
  27.  
  28. Remove the BUDGET subdirectory from the disk in drive A.  BUDGET is a
  29. subdirectory of the root directory.  The default drive is A and the current
  30. directory is the root directory:
  31.  
  32.           RMDIR \BUDGET
  33.